home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / graphics / povray3 / povray3_040 / scripts / picconv.rexx < prev    next >
OS/2 REXX Batch file  |  1997-12-12  |  298b  |  10 lines

  1. /*  Parse POV-Ray output filename into seperate path+name, extension */
  2.  
  3. parse ARG infile
  4. parse var infile basename '.' ext
  5.  
  6. address command 'povray3:utils/'ext'toppm 'infile' >t:tempic'
  7. address command 'povray3:utils/ppmtoilbm -24force t:tempic >'basename'.iff'
  8. address command 'delete t:tempic'
  9.  
  10.